-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Updating typeflo package dependencies #18241
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub. 2 Skipped Deployments
|
WalkthroughBumps components/typeflo package.json version to 0.1.1 and adds @pipedream/platform as a dependency. Reorders JSON to include a new dependencies block after publishConfig. No source or runtime logic changes. Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes Assessment against linked issues
Poem
✨ Finishing Touches🧪 Generate unit tests
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. CodeRabbit Commands (Invoked using PR/Issue comments)Type Other keywords and placeholders
CodeRabbit Configuration File (
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 1
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
💡 Knowledge Base configuration:
- MCP integration is disabled by default for public repositories
- Jira integration is disabled by default for public repositories
- Linear integration is disabled by default for public repositories
You can enable these sources in your CodeRabbit configuration.
⛔ Files ignored due to path filters (1)
pnpm-lock.yamlis excluded by!**/pnpm-lock.yaml
📒 Files selected for processing (1)
components/typeflo/package.json(2 hunks)
🧰 Additional context used
🧠 Learnings (1)
📚 Learning: 2024-12-12T19:23:09.039Z
Learnt from: jcortes
PR: PipedreamHQ/pipedream#14935
File: components/sailpoint/package.json:15-18
Timestamp: 2024-12-12T19:23:09.039Z
Learning: When developing Pipedream components, do not add built-in Node.js modules like `fs` to `package.json` dependencies, as they are native modules provided by the Node.js runtime.
Applied to files:
components/typeflo/package.json
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (4)
- GitHub Check: Verify TypeScript components
- GitHub Check: Publish TypeScript components
- GitHub Check: pnpm publish
- GitHub Check: Lint Code Base
🔇 Additional comments (1)
components/typeflo/package.json (1)
14-17: Added @pipedream/platform to dependencies — verify semver & repo conventioncomponents/typeflo/typeflo.app.mjs — imports @pipedream/platform.
components/typeflo/package.json — "dependencies": { "@pipedream/platform": "^3.1.0" } (no peerDependencies/devDependencies entry in this package.json).
- Confirm the ^3.1.0 range and whether the repo standard is to list @pipedream/platform as a dependency or a peerDependency; align ranges across components.
- If the platform is centralized as a peerDependency, move it to peerDependencies; otherwise keeping it in dependencies is acceptable.
| { | ||
| "name": "@pipedream/typeflo", | ||
| "version": "0.1.0", | ||
| "version": "0.1.1", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
💡 Verification agent
🧩 Analysis chain
Patch bump looks right for a packaging fix; ensure release notes and validation run.
This is a packaging-only change, so 0.1.1 is appropriate. Please update the CHANGELOG/release notes and run the package validation to confirm the fix.
🏁 Script executed:
#!/bin/bash
set -euo pipefail
# Validate the single package
npm run validate:package -- @pipedream/typeflo
# Optional: verbose validation across packages (helps catch cross-package drift)
npm run validate:packages:verboseLength of output: 79589
Fix missing dependency and validation errors
components/typeflo/package.json: add "@pipedream/platform" to dependencies, then rerun npm run validate:package -- @pipedream/typeflo until import test passes.
🤖 Prompt for AI Agents
In components/typeflo/package.json around line 3, the package is missing a
runtime dependency which causes validation/import failures; add
"@pipedream/platform" to the "dependencies" section (not devDependencies), save
the file, run npm install, then rerun npm run validate:package --
@pipedream/typeflo and repeat fixing any remaining import/validation errors
until the import test passes.
Closes #18230
Summary by CodeRabbit
No user-facing functionality changes in this release.